* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  font-family: Arial, sans-serif;
}

/* ========== Privacy Policy Hero Section ========== */
.privacy-hero {
    padding-top: 40px;
    min-height: 5vh;
    text-align: center;
    color: #000000;
}

.privacy-hero h2 {
    font-size: 3rem;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 800;
    font-family: 'Poppins', 'Segoe UI', Roboto, sans-serif;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.privacy-hero h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 3px;
    background-color: #ff9800;
    border-radius: 2px;
}
/* ========== Policy Content Section ========== */
.policy-page {
    background-color: #f9f9f9;
    padding: 80px 0;
    font-family: 'Poppins', Arial, sans-serif;
}

.policy-container {
    max-width: 950px;
    margin: 0 auto;
    padding: 0 20px;
}

.policy-content-box {
    background: #ffffff;
    padding: 50px;
    border: 1px solid #ff9800;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.last-updated {
    color: #ff9800;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 25px;
    display: block;
    border-bottom: 1px dashed #ddd;
    padding-bottom: 10px;
}

.policy-content-box p {
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.policy-section {
    margin-top: 40px;
}

.policy-section h3 {
    color: #222;
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    padding-left: 15px;
    border-left: 5px solid #ff9800; /* Sidebar accent */
}

.policy-section ul {
    list-style: none;
    margin-bottom: 20px;
}

.policy-section ul li {
    color: #555;
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
}

.policy-section ul li::before {
    content: "\2713";
    color: #ff9800;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.policy-section strong {
    color: #222;
}

/* ========== Responsive Design ========== */
@media (max-width: 768px) {
    .privacy-hero h2 {
        font-size: 2rem;
    }
    
    .policy-content-box {
        padding: 30px 20px;
    }

    .policy-section h3 {
        font-size: 1.3rem;
    }
}